home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / include / Xm / CascadeB.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-30  |  1.6 KB  |  64 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC. 
  3.  * ALL RIGHTS RESERVED 
  4. */ 
  5. /* 
  6.  * Motif Release 1.2
  7. */ 
  8. /*   $RCSfile: CascadeB.h,v $ $Revision: 10.1 $ $Date: 1994/02/03 15:34:57 $ */
  9. /*
  10. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  11. /*
  12. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  13. #ifndef _XmCascadeB_h
  14. #define _XmCascadeB_h
  15.  
  16. #include <Xm/Xm.h>
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. externalref WidgetClass xmCascadeButtonWidgetClass;
  23.  
  24. typedef struct _XmCascadeButtonRec      * XmCascadeButtonWidget;
  25. typedef struct _XmCascadeButtonClassRec * XmCascadeButtonWidgetClass;
  26.  
  27. /* fast subclass define */
  28. #ifndef XmIsCascadeButton 
  29. #define XmIsCascadeButton(w) XtIsSubclass(w, xmCascadeButtonWidgetClass)
  30. #endif /* XmIsCascadeButton */
  31.  
  32.  
  33. /********    Public Function Declarations    ********/
  34. #ifdef _NO_PROTO
  35.  
  36. extern Widget XmCreateCascadeButton() ;
  37. extern void XmCascadeButtonHighlight() ;
  38.  
  39. #else
  40.  
  41. extern Widget XmCreateCascadeButton( 
  42.                         Widget parent,
  43.                         char *name,
  44.                         ArgList al,
  45.                         Cardinal ac) ;
  46. extern void XmCascadeButtonHighlight( 
  47.                         Widget cb,
  48. #if NeedWidePrototypes
  49.                         int highlight) ;
  50. #else
  51.                         Boolean highlight) ;
  52. #endif /* NeedWidePrototypes */
  53.  
  54. #endif /* _NO_PROTO */
  55. /********    End Public Function Declarations    ********/
  56.  
  57.  
  58. #ifdef __cplusplus
  59. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  60. #endif
  61.  
  62. #endif /* _XmCascadeB_h */
  63. /* DON'T ADD STUFF AFTER THIS #endif */
  64.